From: Jay Belanger Date: Wed, 20 Jun 2007 19:32:49 +0000 (+0000) Subject: (math-standard-ops): Fix precedence of multiplication. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~18281 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8c41b96e8ba2163a0748dc45e3223cb2c2be936d;p=emacs.git (math-standard-ops): Fix precedence of multiplication. --- diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el index df2ff08b552..6f37568ece4 100644 --- a/lisp/calc/calc.el +++ b/lisp/calc/calc.el @@ -3506,9 +3506,9 @@ See calc-keypad for details." '( "2x" * 196 195 ) math-standard-opers)) (cons - '( "*" * 186 185 ) + '( "*" * 190 191 ) (cons - '( "2x" * 186 185 ) + '( "2x" * 190 191 ) math-standard-opers)))) (defun math-standard-ops-p ()